Switch sense of check in debian/test.sh so we really ignore test failures on mipsel...
authorSimon McVittie <smcv@debian.org>
Wed, 6 Jul 2016 14:23:38 +0000 (15:23 +0100)
committerSimon McVittie <smcv@debian.org>
Wed, 6 Jul 2016 14:23:38 +0000 (15:23 +0100)
debian/changelog
debian/test.sh

index 471fe30949d8713cc614c1065e242714a520f809..0bfc15ed21fe4c3c133319cc41ba9c0a42d96bfd 100644 (file)
@@ -1,3 +1,10 @@
+ostree (2016.6-4) unstable; urgency=medium
+
+  * Switch sense of check in debian/test.sh so we really ignore test
+    failures on mipsel, and not on !mipsel.
+
+ -- Simon McVittie <smcv@debian.org>  Wed, 06 Jul 2016 15:23:31 +0100
+
 ostree (2016.6-3) unstable; urgency=medium
 
   * Ignore build-time test failures on mipsel. "ostree pull"
index e40351165846a8cbe3d6b6e6731cbeb3a47fc5e5..dc8eed282de01988e3e77f11bf42f1a133b29bc8 100755 (executable)
@@ -36,7 +36,7 @@ fi
 
 if [ "$failed" -gt 0 ]; then
     echo "Failed $failed out of $try_tests test runs"
-    if [ -n "$ignore" ]; then
+    if [ -z "$ignore" ]; then
         exit 1
     else
         echo "Ignoring test failure for this architecture"